* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.carousel-container {
  overflow: hidden;
  max-width: 100%;
}
.carousel {
  display: flex;
  max-width: 100%;
  transition: transform 0.5s ease-in-out;
  touch-action: pan-y;
}
.carousel div {
  width: 100%;
  flex: 0 0 100%;
}
.prev,
.next {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 100);
  color: var(--e-global-color-primary);
  border: none;
  padding: 10px;
  cursor: pointer;
  height: 30px;
  max-width: 30px;
  border-radius: 5px;
}

.prev:hover,
.next:hover {
  background-color: var(--e-global-color-primary);
  color: white;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.car-card {
  margin-top: 5vh;
  border-radius: 10px;
}

.elementor-widget-containe {
  position: relative;
}
.seat-container {
  position: absolute;
  top: 2px;
  left: 4px;
}

.car-image-container {
  height: 215px;
  width: 100%;
  display: flex;
  flex: 1;
}

.car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-outer-container {
  position: absolute;
  /* bottom: 0px;*/
  height: 5vh;
  display: flex;
  flex: 1;
  flex-direction: row;
  background-color: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: space-between;
}

.info-container {
  display: flex;
  flex-direction: row;
  max-width: 50%;
  flex: 1;
  padding-left: 20px;
  padding-right: 20px;
  align-items: center;
  color: var(--e-global-color-secondary);
}

.info-l {
  justify-content: flex-start;
}

.info-r {
  justify-content: flex-end;
}

.info-text {
  margin-left: 10px;
  font-size: 12px;
}

.car-name {
  text-align: center;
  margin-bottom: 10px;
}

.type-of-car {
  justify-items: center;
}

.my-km {
  font-size: small;
  color: var(--e-global-color-text);
  text-transform: lowercase;
  font-weight: 400;
}

.footer-vt-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-vt-logo {
  width: 100px;
  height: 100px;
}
.self-rent-space {
margin-top: 10px;
}